home *** CD-ROM | disk | FTP | other *** search
- ;******************************************************
- ;TITLE: MOVSlOW6.ASM
- ;CREATED BY: Intelligent Technologies
- ;DESCRIPTION: Move the IBot
- ;NOTES: This program was created to act as a training target
- ;Name Date Description
- ;---------------- ------------- -------------------
- ;ITI July 22, 1995 created the program
- ;******************************************************
-
- .NAME "MoveSlow6"
-
- COPR #CHASSISMOVE,#40 ;move IBot forward 40 units
- Loop
- MOVE #4,R0 ;move value 4 into r0
- COPR #CHASSISMOVE,R0 ;move IBot distance(r0)
- Delay
- COPR #CHASSISTURN,#1350 ;turn IBot around 3 3/4 times
- COPR #CHASSISMOVE,#5 ;move IBot forward 5 units
- DEC R0 ;subtract 1 from r0
- JE Loop ;go to loop
- JUMP Delay ;go delay again
-